Stay Hungry
[TOC]
输入一个链表,按链表值从尾到头的顺序返回一个ArrayList。
/*function ListNode(x){ this.val = x; this.next = null; }*/ function printListFromTailToHead(head) { let arr=[]; while(head){ arr.unshift(head.val); head=head.next; } return arr; }
遍历 最长系列